home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Inside Mac Games Volume 5 #3
/
IMG 46 Vol 5-3.iso
/
More Goodies
/
More For Your Game
/
Dark Forces
/
Levels ƒ
/
Lahara Hotel
/
HOTEL.BAT
next >
Wrap
DOS Batch File
|
1996-11-13
|
1KB
|
61 lines
@echo off
if not exist jedi.lvl goto OK1
echo JEDI.LVL was found in the current directory!
goto Abort
:OK1
if not exist briefing.lst goto OK2
echo BRIEFING.LST was found in the current directory!
goto Abort
:OK2
if not exist text.msg goto OK3
echo TEXT.MSG was found in the current directory!
echo (For the full effect, this file should be moved or renamed)
echo.
choice /c:yn Continue
if errorlevel 2 goto end
echo.
:OK3
if not exist cutscene.lst goto OK4
echo CUTSCENE.LST was found in the current directory!
echo (For the full effect, this file should be moved or renamed)
echo.
choice /c:yn Continue
if errorlevel 2 goto end
echo.
:OK4
if not exist stalk-01.gmd goto OK5
echo STALK-01.GMD was found in the current directory!
echo (For the full effect, this file should be moved or renamed)
echo.
choice /c:yn Continue
if errorlevel 2 goto end
echo.
:OK5
if not exist fight-01.gmd goto AllOK
echo FIGHT-01.GMD was found in the current directory!
echo (For the full effect, this file should be moved or renamed)
echo.
choice /c:yn Continue
if errorlevel 2 goto end
echo.
:AllOK
ren lfd\dfbrief.lfd dfbrief.old
ren hotel.lfd dfbrief.lfd
dark -uhotel.gob %1 %2 %3 %4 %5 %6 %7 %8 %9
ren dfbrief.lfd hotel.lfd
ren lfd\dfbrief.old dfbrief.lfd
goto end
:Abort
echo This file must be moved or renamed in order to play the HOTEL level.
echo.
:end